Minor Python mode fix (Bug#5653).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 27 Feb 2010 00:19:50 +0000 (19:19 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 27 Feb 2010 00:19:50 +0000 (19:19 -0500)
* progmodes/python.el (python-pdbtrack-stack-entry-regexp): Allow
the characters _<> in the stack entry (Bug#5653).

lisp/ChangeLog
lisp/progmodes/python.el

index e4611b9a031813e7a2ba7ca8ed8fdc5e443e48b1..beb441ee38c35242470f740cdfbac33fd8718bfe 100644 (file)
@@ -1,3 +1,8 @@
+2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
+
+       * progmodes/python.el (python-pdbtrack-stack-entry-regexp): Allow
+       the characters _<> in the stack entry (Bug#5653).
+
 2010-02-26  Kenichi Handa  <handa@m17n.org>
 
        * language/burmese.el: Fix entries in composition-function-table.
index a6354eff998621169f660fdf0067424d52d8a2a2..4e0f326e2d42d0c070d94d9e19b1f9305f3019b7 100644 (file)
@@ -576,7 +576,7 @@ Currently-active file is at the head of the list.")
 (defvar python-pdbtrack-is-tracking-p nil)
 
 (defconst python-pdbtrack-stack-entry-regexp
-  "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
+  "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
   "Regular expression pdbtrack uses to find a stack trace entry.")
 
 (defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ "